diff --git a/.github/renovate.json b/.github/renovate.json index 66f4a27..f02f654 100644 --- a/.github/renovate.json +++ b/.github/renovate.json @@ -1,4 +1,6 @@ { "$schema": "https://docs.renovatebot.com/renovate-schema.json", - "extends": ["github>ivuorinen/renovate-config"] + "extends": [ + "github>ivuorinen/renovate-config" + ] } diff --git a/.serena/memories/complete_project_overview_2025.md b/.serena/memories/complete_project_overview_2025.md index be3abe3..8c2c8c5 100644 --- a/.serena/memories/complete_project_overview_2025.md +++ b/.serena/memories/complete_project_overview_2025.md @@ -149,9 +149,8 @@ Total: 1,302 lines, 61 tests 1. **test.yml** - Multi-node testing (Node 22, 24) 2. **release.yml** - Automated releases 3. **codeql.yml** - Security code scanning -4. **pr-lint.yml** - Pull request validation -5. **stale.yml** - Issue/PR management -6. **sync-labels.yml** - Label synchronization +4. **stale.yml** - Issue/PR management +5. **sync-labels.yml** - Label synchronization ### Custom GitHub Actions diff --git a/.serena/memories/github_workflows_optimization_2025.md b/.serena/memories/github_workflows_optimization_2025.md index 6782aa0..4173e48 100644 --- a/.serena/memories/github_workflows_optimization_2025.md +++ b/.serena/memories/github_workflows_optimization_2025.md @@ -36,7 +36,7 @@ The project had significant duplication in GitHub Actions workflows, causing unn **File**: `.github/workflows/test.yml` → Renamed to "CI" - **Purpose**: Single source of truth for all continuous integration -- **Triggers**: push, pull_request, merge_group to main/master +- **Triggers**: push, pull_request to main/master - **Jobs**: test (matrix), lint, coverage - **Result**: Eliminated duplicate linting, maintained full functionality diff --git a/.serena/memories/real_world_shellspec_patterns.md b/.serena/memories/real_world_shellspec_patterns.md index 7a1ad93..9e5c444 100644 --- a/.serena/memories/real_world_shellspec_patterns.md +++ b/.serena/memories/real_world_shellspec_patterns.md @@ -79,9 +79,10 @@ End ### Test Coverage Added -- 59 total tests (up from 53) +- 63 total tests (as of 2025-12-11; originally 59, up from 53) - New `real_world_patterns.txt` test file - 6 additional tests covering hook statements, directives, and complex patterns +- 4 additional tests for Data block modifiers (added 2025-12-11) ## Integration Status @@ -118,8 +119,8 @@ End - **Block types**: 5 (Describe, Context, It, Hook, Utility) - **Statement types**: 2 (Hook statements, Directives) - **Keywords supported**: 25+ ShellSpec keywords -- **Test coverage**: 100% (59/59 tests passing) -- **Conflict warnings**: 13 (mostly unnecessary, can be optimized) +- **Test coverage**: 100% (63/63 tests passing as of 2025-12-11) +- **Conflict warnings**: 5 (optimized from 13, all necessary) ## Recommendations for Future Development diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 6156fab..441536b 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -33,7 +33,7 @@ git clone https://github.com/YOUR_USERNAME/tree-sitter-shellspec.git cd tree-sitter-shellspec ``` -3. Add the upstream repository: +1. Add the upstream repository: ```bash git remote add upstream https://github.com/ivuorinen/tree-sitter-shellspec.git @@ -47,19 +47,19 @@ git remote add upstream https://github.com/ivuorinen/tree-sitter-shellspec.git npm install ``` -2. **Generate the grammar:** +1. **Generate the grammar:** ```bash npm run generate ``` -3. **Run tests:** +1. **Run tests:** ```bash npm test ``` -4. **Build the parser:** +1. **Build the parser:** ```bash npm run build @@ -200,7 +200,7 @@ tree-sitter test --debug ### Before Submitting 1. **Ensure all tests pass:** `npm test` -2. **Check code style:** `npm run lint && npm run format -- --check` +2. **Check code style:** `npm run lint && npm run format:check` 3. **Update documentation** if needed 4. **Test with real ShellSpec files** when possible 5. **Run the full development cycle:** `npm run rebuild` @@ -213,9 +213,9 @@ tree-sitter test --debug git checkout -b feature/your-feature-name ``` -2. **Make your changes** following the guidelines above +1. **Make your changes** following the guidelines above -3. **Commit with clear messages:** +2. **Commit with clear messages:** ```bash git commit -m "feat: add support for Data block modifiers @@ -225,13 +225,13 @@ git commit -m "feat: add support for Data block modifiers - Add documentation examples" ``` -4. **Push to your fork:** +1. **Push to your fork:** ```bash git push origin feature/your-feature-name ``` -5. **Create a Pull Request** with: +1. **Create a Pull Request** with: - Clear description of changes - References to related issues @@ -288,13 +288,13 @@ Use the [Grammar Issue template](.github/ISSUE_TEMPLATE/grammar_issue.md) for: - Pipe filter syntax (`Data | command`) - Multi-line `#|` syntax -2. **Assertion parsing** +1. **Assertion parsing** - When/The statement structures - Matcher syntax parsing - Subject/predicate analysis -3. **Performance optimization** +1. **Performance optimization** - Reduce parser conflicts - Optimize grammar rules @@ -308,13 +308,13 @@ Use the [Grammar Issue template](.github/ISSUE_TEMPLATE/grammar_issue.md) for: - VS Code extension support - Emacs tree-sitter integration -2. **Tooling improvements** +1. **Tooling improvements** - Syntax highlighting themes - Language server features - Code formatting rules -3. **Documentation** +1. **Documentation** - Usage tutorials - Grammar development guide diff --git a/README.md b/README.md index db0bb19..ee3b5b1 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # tree-sitter-shellspec -[![Test Status](https://img.shields.io/badge/tests-61%2F61%20passing-brightgreen)](https://github.com/ivuorinen/tree-sitter-shellspec) +[![Test Status](https://img.shields.io/badge/tests-63%2F63%20passing-brightgreen)](https://github.com/ivuorinen/tree-sitter-shellspec) [![Grammar Coverage](https://img.shields.io/badge/coverage-100%25-brightgreen)](https://github.com/ivuorinen/tree-sitter-shellspec) [![Tree-sitter](https://img.shields.io/badge/tree--sitter-grammar-blue)](https://tree-sitter.github.io/) @@ -19,7 +19,7 @@ It enables syntax highlighting, code navigation, and tooling integration for She - **Complete ShellSpec syntax support** - All block types, hooks, and utility constructs - **Real-world compatibility** - Tested against official ShellSpec examples - **Bash integration** - Seamlessly handles mixed ShellSpec/bash code -- **Production ready** - 100% test coverage with 59 comprehensive test cases +- **Production ready** - 100% test coverage with 63 comprehensive test cases - **Editor support** - Works with any Tree-sitter compatible editor ## Installation @@ -241,7 +241,7 @@ npm install # Generate parser from grammar npm run generate -# Run test suite (59 comprehensive tests) +# Run test suite (63 comprehensive tests) npm test # Build the parser @@ -252,9 +252,10 @@ npm run dev # Generate + test npm run dev:watch # Watch mode for development # Linting and formatting -npm run lint # Check code style -npm run lint:fix # Auto-fix style issues -npm run format # Format code +npm run lint # Check code style +npm run lint:editorconfig:fix # Auto-fix EditorConfig issues +npm run lint:markdown # Auto-fix markdown issues (includes --fix) +npm run format # Format code with prettier # Utilities npm run clean # Clean generated files diff --git a/grammar.js b/grammar.js index 943a5a0..c099699 100644 --- a/grammar.js +++ b/grammar.js @@ -83,7 +83,14 @@ module.exports = grammar(bashGrammar, { prec.right( 1, seq( - choice("Context", "ExampleGroup", "fContext", "xContext"), + choice( + "Context", + "ExampleGroup", + "fContext", + "xContext", + "fExampleGroup", + "xExampleGroup", + ), field("description", choice($.string, $.raw_string, $.word)), repeat($._terminated_statement), "End", diff --git a/package.json b/package.json index ca66439..eaeb36f 100644 --- a/package.json +++ b/package.json @@ -27,8 +27,8 @@ "dev": "npm run generate && npm run test", "dev:watch": "nodemon --watch grammar.js --watch test/ --ext js,txt --exec 'npm run dev'", "lint": "npx mega-linter-runner", - "lint:yaml": "yamllint .", - "lint:markdown": "markdownlint . --config .markdownlint.json --ignore node_modules --fix", + "lint:markdown": "markdownlint . --config .markdownlint.json --ignore node_modules", + "lint:markdown:fix": "markdownlint . --config .markdownlint.json --ignore node_modules --fix", "lint:editorconfig": "eclint check .", "lint:editorconfig:fix": "eclint fix .", "format": "prettier --write .", diff --git a/queries/highlights.scm b/queries/highlights.scm index 1e355ae..fa7fe31 100644 --- a/queries/highlights.scm +++ b/queries/highlights.scm @@ -15,6 +15,7 @@ [ "fDescribe" "fContext" + "fExampleGroup" "fIt" "fExample" "fSpecify" @@ -24,6 +25,7 @@ [ "xDescribe" "xContext" + "xExampleGroup" "xIt" "xExample" "xSpecify" @@ -61,13 +63,6 @@ "End" ] @keyword.control -; Data block modifiers -[ - ":raw" - ":expand" - "#|" -] @keyword.modifier - ; Directives [ "Include" diff --git a/src/grammar.json b/src/grammar.json index b8fdd13..032efa1 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -7072,6 +7072,14 @@ { "type": "STRING", "value": "xContext" + }, + { + "type": "STRING", + "value": "fExampleGroup" + }, + { + "type": "STRING", + "value": "xExampleGroup" } ] }, @@ -7923,4 +7931,4 @@ "_primary_expression" ], "reserved": {} -} \ No newline at end of file +} diff --git a/src/node-types.json b/src/node-types.json index 534a93d..6428659 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -3143,6 +3143,10 @@ "type": "fExample", "named": false }, + { + "type": "fExampleGroup", + "named": false + }, { "type": "fIt", "named": false @@ -3271,6 +3275,10 @@ "type": "xExample", "named": false }, + { + "type": "xExampleGroup", + "named": false + }, { "type": "xIt", "named": false @@ -3307,4 +3315,4 @@ "type": "~", "named": false } -] \ No newline at end of file +] diff --git a/src/parser.c b/src/parser.c index 19117bb..ce3ba6b 100644 --- a/src/parser.c +++ b/src/parser.c @@ -17,9 +17,9 @@ #define LANGUAGE_VERSION 15 #define STATE_COUNT 8092 #define LARGE_STATE_COUNT 720 -#define SYMBOL_COUNT 329 +#define SYMBOL_COUNT 331 #define ALIAS_COUNT 0 -#define TOKEN_COUNT 212 +#define TOKEN_COUNT 214 #define EXTERNAL_TOKEN_COUNT 29 #define FIELD_COUNT 26 #define MAX_ALIAS_SEQUENCE_LENGTH 8 @@ -188,174 +188,176 @@ enum ts_symbol_identifiers { anon_sym_ExampleGroup = 158, anon_sym_fContext = 159, anon_sym_xContext = 160, - anon_sym_It = 161, - anon_sym_Example = 162, - anon_sym_Specify = 163, - anon_sym_fIt = 164, - anon_sym_fExample = 165, - anon_sym_fSpecify = 166, - anon_sym_xIt = 167, - anon_sym_xExample = 168, - anon_sym_xSpecify = 169, - anon_sym_BeforeEach = 170, - anon_sym_AfterEach = 171, - anon_sym_BeforeAll = 172, - anon_sym_AfterAll = 173, - anon_sym_BeforeCall = 174, - anon_sym_AfterCall = 175, - anon_sym_BeforeRun = 176, - anon_sym_AfterRun = 177, - anon_sym_Parameters = 178, - anon_sym_Skip = 179, - anon_sym_Pending = 180, - anon_sym_Todo = 181, - anon_sym_Data = 182, - anon_sym_raw = 183, - anon_sym_expand = 184, - anon_sym_POUND_PIPE = 185, - aux_sym_shellspec_data_block_token1 = 186, - anon_sym_Before = 187, - anon_sym_After = 188, - anon_sym_Include = 189, - sym_heredoc_start = 190, - sym_simple_heredoc_body = 191, - sym__heredoc_body_beginning = 192, - sym_heredoc_content = 193, - sym_heredoc_end = 194, - sym_file_descriptor = 195, - sym__empty_value = 196, - sym__concat = 197, - sym_variable_name = 198, - sym_test_operator = 199, - sym_regex = 200, - sym__regex_no_slash = 201, - sym__regex_no_space = 202, - sym__expansion_word = 203, - sym_extglob_pattern = 204, - sym__bare_dollar = 205, - sym__brace_start = 206, - sym__immediate_double_hash = 207, - sym__external_expansion_sym_hash = 208, - sym__external_expansion_sym_bang = 209, - sym__external_expansion_sym_equal = 210, - sym___error_recovery = 211, - sym_program = 212, - sym__statements = 213, - aux_sym__terminated_statement = 214, - sym__statement_not_pipeline = 215, - sym_redirected_statement = 216, - sym_for_statement = 217, - sym_c_style_for_statement = 218, - sym__for_body = 219, - sym__c_expression = 220, - sym__c_expression_not_assignment = 221, - sym__c_variable_assignment = 222, - sym__c_unary_expression = 223, - sym__c_binary_expression = 224, - sym__c_postfix_expression = 225, - sym__c_parenthesized_expression = 226, - sym_while_statement = 227, - sym_do_group = 228, - sym_if_statement = 229, - sym_elif_clause = 230, - sym_else_clause = 231, - sym_case_statement = 232, - sym_case_item = 233, - sym_last_case_item = 234, - sym_function_definition = 235, - sym_compound_statement = 236, - sym_subshell = 237, - sym_pipeline = 238, - sym_list = 239, - sym_negated_command = 240, - sym_test_command = 241, - sym__test_command_binary_expression = 242, - sym_declaration_command = 243, - sym_unset_command = 244, - sym_command = 245, - sym_command_name = 246, - sym_variable_assignment = 247, - sym_variable_assignments = 248, - sym_subscript = 249, - sym_file_redirect = 250, - sym_heredoc_redirect = 251, - sym__heredoc_pipeline = 252, - sym__heredoc_expression = 253, - aux_sym__heredoc_command = 254, - sym__heredoc_body = 255, - sym_heredoc_body = 256, - sym__simple_heredoc_body = 257, - sym_herestring_redirect = 258, - sym__expression = 259, - sym_binary_expression = 260, - sym_ternary_expression = 261, - sym_unary_expression = 262, - sym_postfix_expression = 263, - sym_parenthesized_expression = 264, - sym_arithmetic_expansion = 265, - sym_brace_expression = 266, - sym__arithmetic_expression = 267, - sym__arithmetic_literal = 268, - sym__arithmetic_binary_expression = 269, - sym__arithmetic_ternary_expression = 270, - sym__arithmetic_unary_expression = 271, - sym__arithmetic_postfix_expression = 272, - sym__arithmetic_parenthesized_expression = 273, - sym_concatenation = 274, - sym_string = 275, - sym_translated_string = 276, - sym_array = 277, - sym_number = 278, - sym_simple_expansion = 279, - sym_expansion = 280, - sym__expansion_body = 281, - sym__expansion_expression = 282, - sym__expansion_regex = 283, - sym__expansion_regex_replacement = 284, - sym__expansion_regex_removal = 285, - sym__expansion_max_length = 286, - sym__expansion_max_length_expression = 287, - sym__expansion_max_length_binary_expression = 288, - sym__expansion_operator = 289, - sym__concatenation_in_expansion = 290, - sym_command_substitution = 291, - sym_process_substitution = 292, - sym__extglob_blob = 293, - sym__c_terminator = 294, - sym_shellspec_describe_block = 295, - sym_shellspec_context_block = 296, - sym_shellspec_it_block = 297, - sym_shellspec_hook_block = 298, - sym_shellspec_utility_block = 299, - sym_shellspec_data_block = 300, - sym_shellspec_hook_statement = 301, - sym_shellspec_directive_statement = 302, - aux_sym__statements_repeat1 = 303, - aux_sym_redirected_statement_repeat1 = 304, - aux_sym_redirected_statement_repeat2 = 305, - aux_sym_for_statement_repeat1 = 306, - aux_sym__for_body_repeat1 = 307, - aux_sym_if_statement_repeat1 = 308, - aux_sym_case_statement_repeat1 = 309, - aux_sym_case_item_repeat1 = 310, - aux_sym_pipeline_repeat1 = 311, - aux_sym_declaration_command_repeat1 = 312, - aux_sym_unset_command_repeat1 = 313, - aux_sym_command_repeat1 = 314, - aux_sym_command_repeat2 = 315, - aux_sym_variable_assignments_repeat1 = 316, - aux_sym_heredoc_body_repeat1 = 317, - aux_sym__literal_repeat1 = 318, - aux_sym_arithmetic_expansion_repeat1 = 319, - aux_sym_concatenation_repeat1 = 320, - aux_sym_string_repeat1 = 321, - aux_sym__expansion_body_repeat1 = 322, - aux_sym__expansion_regex_repeat1 = 323, - aux_sym__concatenation_in_expansion_repeat1 = 324, - aux_sym_shellspec_describe_block_repeat1 = 325, - aux_sym_shellspec_data_block_repeat1 = 326, - aux_sym_shellspec_hook_statement_repeat1 = 327, - aux_sym_shellspec_directive_statement_repeat1 = 328, + anon_sym_fExampleGroup = 161, + anon_sym_xExampleGroup = 162, + anon_sym_It = 163, + anon_sym_Example = 164, + anon_sym_Specify = 165, + anon_sym_fIt = 166, + anon_sym_fExample = 167, + anon_sym_fSpecify = 168, + anon_sym_xIt = 169, + anon_sym_xExample = 170, + anon_sym_xSpecify = 171, + anon_sym_BeforeEach = 172, + anon_sym_AfterEach = 173, + anon_sym_BeforeAll = 174, + anon_sym_AfterAll = 175, + anon_sym_BeforeCall = 176, + anon_sym_AfterCall = 177, + anon_sym_BeforeRun = 178, + anon_sym_AfterRun = 179, + anon_sym_Parameters = 180, + anon_sym_Skip = 181, + anon_sym_Pending = 182, + anon_sym_Todo = 183, + anon_sym_Data = 184, + anon_sym_raw = 185, + anon_sym_expand = 186, + anon_sym_POUND_PIPE = 187, + aux_sym_shellspec_data_block_token1 = 188, + anon_sym_Before = 189, + anon_sym_After = 190, + anon_sym_Include = 191, + sym_heredoc_start = 192, + sym_simple_heredoc_body = 193, + sym__heredoc_body_beginning = 194, + sym_heredoc_content = 195, + sym_heredoc_end = 196, + sym_file_descriptor = 197, + sym__empty_value = 198, + sym__concat = 199, + sym_variable_name = 200, + sym_test_operator = 201, + sym_regex = 202, + sym__regex_no_slash = 203, + sym__regex_no_space = 204, + sym__expansion_word = 205, + sym_extglob_pattern = 206, + sym__bare_dollar = 207, + sym__brace_start = 208, + sym__immediate_double_hash = 209, + sym__external_expansion_sym_hash = 210, + sym__external_expansion_sym_bang = 211, + sym__external_expansion_sym_equal = 212, + sym___error_recovery = 213, + sym_program = 214, + sym__statements = 215, + aux_sym__terminated_statement = 216, + sym__statement_not_pipeline = 217, + sym_redirected_statement = 218, + sym_for_statement = 219, + sym_c_style_for_statement = 220, + sym__for_body = 221, + sym__c_expression = 222, + sym__c_expression_not_assignment = 223, + sym__c_variable_assignment = 224, + sym__c_unary_expression = 225, + sym__c_binary_expression = 226, + sym__c_postfix_expression = 227, + sym__c_parenthesized_expression = 228, + sym_while_statement = 229, + sym_do_group = 230, + sym_if_statement = 231, + sym_elif_clause = 232, + sym_else_clause = 233, + sym_case_statement = 234, + sym_case_item = 235, + sym_last_case_item = 236, + sym_function_definition = 237, + sym_compound_statement = 238, + sym_subshell = 239, + sym_pipeline = 240, + sym_list = 241, + sym_negated_command = 242, + sym_test_command = 243, + sym__test_command_binary_expression = 244, + sym_declaration_command = 245, + sym_unset_command = 246, + sym_command = 247, + sym_command_name = 248, + sym_variable_assignment = 249, + sym_variable_assignments = 250, + sym_subscript = 251, + sym_file_redirect = 252, + sym_heredoc_redirect = 253, + sym__heredoc_pipeline = 254, + sym__heredoc_expression = 255, + aux_sym__heredoc_command = 256, + sym__heredoc_body = 257, + sym_heredoc_body = 258, + sym__simple_heredoc_body = 259, + sym_herestring_redirect = 260, + sym__expression = 261, + sym_binary_expression = 262, + sym_ternary_expression = 263, + sym_unary_expression = 264, + sym_postfix_expression = 265, + sym_parenthesized_expression = 266, + sym_arithmetic_expansion = 267, + sym_brace_expression = 268, + sym__arithmetic_expression = 269, + sym__arithmetic_literal = 270, + sym__arithmetic_binary_expression = 271, + sym__arithmetic_ternary_expression = 272, + sym__arithmetic_unary_expression = 273, + sym__arithmetic_postfix_expression = 274, + sym__arithmetic_parenthesized_expression = 275, + sym_concatenation = 276, + sym_string = 277, + sym_translated_string = 278, + sym_array = 279, + sym_number = 280, + sym_simple_expansion = 281, + sym_expansion = 282, + sym__expansion_body = 283, + sym__expansion_expression = 284, + sym__expansion_regex = 285, + sym__expansion_regex_replacement = 286, + sym__expansion_regex_removal = 287, + sym__expansion_max_length = 288, + sym__expansion_max_length_expression = 289, + sym__expansion_max_length_binary_expression = 290, + sym__expansion_operator = 291, + sym__concatenation_in_expansion = 292, + sym_command_substitution = 293, + sym_process_substitution = 294, + sym__extglob_blob = 295, + sym__c_terminator = 296, + sym_shellspec_describe_block = 297, + sym_shellspec_context_block = 298, + sym_shellspec_it_block = 299, + sym_shellspec_hook_block = 300, + sym_shellspec_utility_block = 301, + sym_shellspec_data_block = 302, + sym_shellspec_hook_statement = 303, + sym_shellspec_directive_statement = 304, + aux_sym__statements_repeat1 = 305, + aux_sym_redirected_statement_repeat1 = 306, + aux_sym_redirected_statement_repeat2 = 307, + aux_sym_for_statement_repeat1 = 308, + aux_sym__for_body_repeat1 = 309, + aux_sym_if_statement_repeat1 = 310, + aux_sym_case_statement_repeat1 = 311, + aux_sym_case_item_repeat1 = 312, + aux_sym_pipeline_repeat1 = 313, + aux_sym_declaration_command_repeat1 = 314, + aux_sym_unset_command_repeat1 = 315, + aux_sym_command_repeat1 = 316, + aux_sym_command_repeat2 = 317, + aux_sym_variable_assignments_repeat1 = 318, + aux_sym_heredoc_body_repeat1 = 319, + aux_sym__literal_repeat1 = 320, + aux_sym_arithmetic_expansion_repeat1 = 321, + aux_sym_concatenation_repeat1 = 322, + aux_sym_string_repeat1 = 323, + aux_sym__expansion_body_repeat1 = 324, + aux_sym__expansion_regex_repeat1 = 325, + aux_sym__concatenation_in_expansion_repeat1 = 326, + aux_sym_shellspec_describe_block_repeat1 = 327, + aux_sym_shellspec_data_block_repeat1 = 328, + aux_sym_shellspec_hook_statement_repeat1 = 329, + aux_sym_shellspec_directive_statement_repeat1 = 330, }; static const char * const ts_symbol_names[] = { @@ -520,6 +522,8 @@ static const char * const ts_symbol_names[] = { [anon_sym_ExampleGroup] = "ExampleGroup", [anon_sym_fContext] = "fContext", [anon_sym_xContext] = "xContext", + [anon_sym_fExampleGroup] = "fExampleGroup", + [anon_sym_xExampleGroup] = "xExampleGroup", [anon_sym_It] = "It", [anon_sym_Example] = "Example", [anon_sym_Specify] = "Specify", @@ -852,6 +856,8 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_ExampleGroup] = anon_sym_ExampleGroup, [anon_sym_fContext] = anon_sym_fContext, [anon_sym_xContext] = anon_sym_xContext, + [anon_sym_fExampleGroup] = anon_sym_fExampleGroup, + [anon_sym_xExampleGroup] = anon_sym_xExampleGroup, [anon_sym_It] = anon_sym_It, [anon_sym_Example] = anon_sym_Example, [anon_sym_Specify] = anon_sym_Specify, @@ -1667,6 +1673,14 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_fExampleGroup] = { + .visible = true, + .named = false, + }, + [anon_sym_xExampleGroup] = { + .visible = true, + .named = false, + }, [anon_sym_It] = { .visible = true, .named = false, @@ -23275,6 +23289,7 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { END_STATE(); case 249: ACCEPT_TOKEN(anon_sym_fExample); + if (lookahead == 'G') ADVANCE(267); END_STATE(); case 250: ACCEPT_TOKEN(anon_sym_fSpecify); @@ -23292,10 +23307,11 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(anon_sym_xContext); END_STATE(); case 255: - if (lookahead == 'e') ADVANCE(267); + if (lookahead == 'e') ADVANCE(268); END_STATE(); case 256: ACCEPT_TOKEN(anon_sym_xExample); + if (lookahead == 'G') ADVANCE(269); END_STATE(); case 257: ACCEPT_TOKEN(anon_sym_xSpecify); @@ -23310,44 +23326,74 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(anon_sym_BeforeAll); END_STATE(); case 261: - if (lookahead == 'l') ADVANCE(268); + if (lookahead == 'l') ADVANCE(270); END_STATE(); case 262: - if (lookahead == 'h') ADVANCE(269); + if (lookahead == 'h') ADVANCE(271); END_STATE(); case 263: ACCEPT_TOKEN(anon_sym_BeforeRun); END_STATE(); case 264: - if (lookahead == 'o') ADVANCE(270); + if (lookahead == 'o') ADVANCE(272); END_STATE(); case 265: - if (lookahead == 's') ADVANCE(271); + if (lookahead == 's') ADVANCE(273); END_STATE(); case 266: ACCEPT_TOKEN(anon_sym_fDescribe); END_STATE(); case 267: - ACCEPT_TOKEN(anon_sym_xDescribe); + if (lookahead == 'r') ADVANCE(274); END_STATE(); case 268: - ACCEPT_TOKEN(anon_sym_BeforeCall); + ACCEPT_TOKEN(anon_sym_xDescribe); END_STATE(); case 269: - ACCEPT_TOKEN(anon_sym_BeforeEach); + if (lookahead == 'r') ADVANCE(275); END_STATE(); case 270: - if (lookahead == 'u') ADVANCE(272); + ACCEPT_TOKEN(anon_sym_BeforeCall); END_STATE(); case 271: - ACCEPT_TOKEN(anon_sym_Parameters); + ACCEPT_TOKEN(anon_sym_BeforeEach); END_STATE(); case 272: - if (lookahead == 'p') ADVANCE(273); + if (lookahead == 'u') ADVANCE(276); END_STATE(); case 273: + ACCEPT_TOKEN(anon_sym_Parameters); + END_STATE(); + case 274: + if (lookahead == 'o') ADVANCE(277); + END_STATE(); + case 275: + if (lookahead == 'o') ADVANCE(278); + END_STATE(); + case 276: + if (lookahead == 'p') ADVANCE(279); + END_STATE(); + case 277: + if (lookahead == 'u') ADVANCE(280); + END_STATE(); + case 278: + if (lookahead == 'u') ADVANCE(281); + END_STATE(); + case 279: ACCEPT_TOKEN(anon_sym_ExampleGroup); END_STATE(); + case 280: + if (lookahead == 'p') ADVANCE(282); + END_STATE(); + case 281: + if (lookahead == 'p') ADVANCE(283); + END_STATE(); + case 282: + ACCEPT_TOKEN(anon_sym_fExampleGroup); + END_STATE(); + case 283: + ACCEPT_TOKEN(anon_sym_xExampleGroup); + END_STATE(); default: return false; } @@ -31590,6 +31636,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(1), [anon_sym_fContext] = ACTIONS(1), [anon_sym_xContext] = ACTIONS(1), + [anon_sym_fExampleGroup] = ACTIONS(1), + [anon_sym_xExampleGroup] = ACTIONS(1), [anon_sym_It] = ACTIONS(1), [anon_sym_Example] = ACTIONS(1), [anon_sym_Specify] = ACTIONS(1), @@ -31744,6 +31792,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -31894,6 +31944,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -32046,6 +32098,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -32198,6 +32252,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -32350,6 +32406,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -32502,6 +32560,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -32654,6 +32714,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -32806,6 +32868,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -32958,6 +33022,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -33109,6 +33175,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -33260,6 +33328,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -33411,6 +33481,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -33562,6 +33634,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -33713,6 +33787,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -33864,6 +33940,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -34015,6 +34093,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -34166,6 +34246,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -34316,6 +34398,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -34466,6 +34550,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -34616,6 +34702,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -34766,6 +34854,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -34916,6 +35006,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -35066,6 +35158,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -35216,6 +35310,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -35366,6 +35462,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -35516,6 +35614,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -35666,6 +35766,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -35816,6 +35918,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -35966,6 +36070,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -36116,6 +36222,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -36266,6 +36374,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -36416,6 +36526,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -36566,6 +36678,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -36715,6 +36829,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -36864,6 +36980,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -37013,6 +37131,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -37162,6 +37282,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -37311,6 +37433,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -37460,6 +37584,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -37609,6 +37735,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -37758,6 +37886,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -37907,6 +38037,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -38056,6 +38188,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -38205,6 +38339,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -38354,6 +38490,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -38503,6 +38641,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -38652,6 +38792,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -38801,6 +38943,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -38950,6 +39094,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -39099,6 +39245,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -39248,6 +39396,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -39397,6 +39547,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -39546,6 +39698,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -39695,6 +39849,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -39844,6 +40000,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -39993,6 +40151,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -40142,6 +40302,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -40291,6 +40453,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -40440,6 +40604,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -40589,6 +40755,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -40738,6 +40906,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -40887,6 +41057,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -41036,6 +41208,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -41185,6 +41359,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -41334,6 +41510,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -41479,6 +41657,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -41622,6 +41802,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -41764,6 +41946,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(359), [anon_sym_fContext] = ACTIONS(359), [anon_sym_xContext] = ACTIONS(359), + [anon_sym_fExampleGroup] = ACTIONS(359), + [anon_sym_xExampleGroup] = ACTIONS(359), [anon_sym_It] = ACTIONS(361), [anon_sym_Example] = ACTIONS(361), [anon_sym_Specify] = ACTIONS(361), @@ -41906,6 +42090,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(359), [anon_sym_fContext] = ACTIONS(359), [anon_sym_xContext] = ACTIONS(359), + [anon_sym_fExampleGroup] = ACTIONS(359), + [anon_sym_xExampleGroup] = ACTIONS(359), [anon_sym_It] = ACTIONS(361), [anon_sym_Example] = ACTIONS(361), [anon_sym_Specify] = ACTIONS(361), @@ -42048,6 +42234,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(359), [anon_sym_fContext] = ACTIONS(359), [anon_sym_xContext] = ACTIONS(359), + [anon_sym_fExampleGroup] = ACTIONS(359), + [anon_sym_xExampleGroup] = ACTIONS(359), [anon_sym_It] = ACTIONS(361), [anon_sym_Example] = ACTIONS(361), [anon_sym_Specify] = ACTIONS(361), @@ -42190,6 +42378,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(359), [anon_sym_fContext] = ACTIONS(359), [anon_sym_xContext] = ACTIONS(359), + [anon_sym_fExampleGroup] = ACTIONS(359), + [anon_sym_xExampleGroup] = ACTIONS(359), [anon_sym_It] = ACTIONS(361), [anon_sym_Example] = ACTIONS(361), [anon_sym_Specify] = ACTIONS(361), @@ -42332,6 +42522,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(359), [anon_sym_fContext] = ACTIONS(359), [anon_sym_xContext] = ACTIONS(359), + [anon_sym_fExampleGroup] = ACTIONS(359), + [anon_sym_xExampleGroup] = ACTIONS(359), [anon_sym_It] = ACTIONS(361), [anon_sym_Example] = ACTIONS(361), [anon_sym_Specify] = ACTIONS(361), @@ -42474,6 +42666,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(359), [anon_sym_fContext] = ACTIONS(359), [anon_sym_xContext] = ACTIONS(359), + [anon_sym_fExampleGroup] = ACTIONS(359), + [anon_sym_xExampleGroup] = ACTIONS(359), [anon_sym_It] = ACTIONS(361), [anon_sym_Example] = ACTIONS(361), [anon_sym_Specify] = ACTIONS(361), @@ -42616,6 +42810,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(359), [anon_sym_fContext] = ACTIONS(359), [anon_sym_xContext] = ACTIONS(359), + [anon_sym_fExampleGroup] = ACTIONS(359), + [anon_sym_xExampleGroup] = ACTIONS(359), [anon_sym_It] = ACTIONS(361), [anon_sym_Example] = ACTIONS(361), [anon_sym_Specify] = ACTIONS(361), @@ -42758,6 +42954,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(359), [anon_sym_fContext] = ACTIONS(359), [anon_sym_xContext] = ACTIONS(359), + [anon_sym_fExampleGroup] = ACTIONS(359), + [anon_sym_xExampleGroup] = ACTIONS(359), [anon_sym_It] = ACTIONS(361), [anon_sym_Example] = ACTIONS(361), [anon_sym_Specify] = ACTIONS(361), @@ -42895,6 +43093,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -43032,6 +43232,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -43169,6 +43371,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -43306,6 +43510,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -43443,6 +43649,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(534), [anon_sym_fContext] = ACTIONS(534), [anon_sym_xContext] = ACTIONS(534), + [anon_sym_fExampleGroup] = ACTIONS(534), + [anon_sym_xExampleGroup] = ACTIONS(534), [anon_sym_It] = ACTIONS(537), [anon_sym_Example] = ACTIONS(537), [anon_sym_Specify] = ACTIONS(537), @@ -43580,6 +43788,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -43717,6 +43927,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -43854,6 +44066,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -43991,6 +44205,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -44126,6 +44342,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -44262,6 +44480,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -44399,6 +44619,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(670), [anon_sym_fContext] = ACTIONS(670), [anon_sym_xContext] = ACTIONS(670), + [anon_sym_fExampleGroup] = ACTIONS(670), + [anon_sym_xExampleGroup] = ACTIONS(670), [anon_sym_It] = ACTIONS(672), [anon_sym_Example] = ACTIONS(672), [anon_sym_Specify] = ACTIONS(672), @@ -44535,6 +44757,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(670), [anon_sym_fContext] = ACTIONS(670), [anon_sym_xContext] = ACTIONS(670), + [anon_sym_fExampleGroup] = ACTIONS(670), + [anon_sym_xExampleGroup] = ACTIONS(670), [anon_sym_It] = ACTIONS(672), [anon_sym_Example] = ACTIONS(672), [anon_sym_Specify] = ACTIONS(672), @@ -44671,6 +44895,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(670), [anon_sym_fContext] = ACTIONS(670), [anon_sym_xContext] = ACTIONS(670), + [anon_sym_fExampleGroup] = ACTIONS(670), + [anon_sym_xExampleGroup] = ACTIONS(670), [anon_sym_It] = ACTIONS(672), [anon_sym_Example] = ACTIONS(672), [anon_sym_Specify] = ACTIONS(672), @@ -44807,6 +45033,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(670), [anon_sym_fContext] = ACTIONS(670), [anon_sym_xContext] = ACTIONS(670), + [anon_sym_fExampleGroup] = ACTIONS(670), + [anon_sym_xExampleGroup] = ACTIONS(670), [anon_sym_It] = ACTIONS(672), [anon_sym_Example] = ACTIONS(672), [anon_sym_Specify] = ACTIONS(672), @@ -44943,6 +45171,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(670), [anon_sym_fContext] = ACTIONS(670), [anon_sym_xContext] = ACTIONS(670), + [anon_sym_fExampleGroup] = ACTIONS(670), + [anon_sym_xExampleGroup] = ACTIONS(670), [anon_sym_It] = ACTIONS(672), [anon_sym_Example] = ACTIONS(672), [anon_sym_Specify] = ACTIONS(672), @@ -45079,6 +45309,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(670), [anon_sym_fContext] = ACTIONS(670), [anon_sym_xContext] = ACTIONS(670), + [anon_sym_fExampleGroup] = ACTIONS(670), + [anon_sym_xExampleGroup] = ACTIONS(670), [anon_sym_It] = ACTIONS(672), [anon_sym_Example] = ACTIONS(672), [anon_sym_Specify] = ACTIONS(672), @@ -45214,6 +45446,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -45351,6 +45585,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(670), [anon_sym_fContext] = ACTIONS(670), [anon_sym_xContext] = ACTIONS(670), + [anon_sym_fExampleGroup] = ACTIONS(670), + [anon_sym_xExampleGroup] = ACTIONS(670), [anon_sym_It] = ACTIONS(672), [anon_sym_Example] = ACTIONS(672), [anon_sym_Specify] = ACTIONS(672), @@ -45487,6 +45723,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(670), [anon_sym_fContext] = ACTIONS(670), [anon_sym_xContext] = ACTIONS(670), + [anon_sym_fExampleGroup] = ACTIONS(670), + [anon_sym_xExampleGroup] = ACTIONS(670), [anon_sym_It] = ACTIONS(672), [anon_sym_Example] = ACTIONS(672), [anon_sym_Specify] = ACTIONS(672), @@ -45622,6 +45860,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -45759,6 +45999,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(670), [anon_sym_fContext] = ACTIONS(670), [anon_sym_xContext] = ACTIONS(670), + [anon_sym_fExampleGroup] = ACTIONS(670), + [anon_sym_xExampleGroup] = ACTIONS(670), [anon_sym_It] = ACTIONS(672), [anon_sym_Example] = ACTIONS(672), [anon_sym_Specify] = ACTIONS(672), @@ -45895,6 +46137,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(670), [anon_sym_fContext] = ACTIONS(670), [anon_sym_xContext] = ACTIONS(670), + [anon_sym_fExampleGroup] = ACTIONS(670), + [anon_sym_xExampleGroup] = ACTIONS(670), [anon_sym_It] = ACTIONS(672), [anon_sym_Example] = ACTIONS(672), [anon_sym_Specify] = ACTIONS(672), @@ -46031,6 +46275,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(670), [anon_sym_fContext] = ACTIONS(670), [anon_sym_xContext] = ACTIONS(670), + [anon_sym_fExampleGroup] = ACTIONS(670), + [anon_sym_xExampleGroup] = ACTIONS(670), [anon_sym_It] = ACTIONS(672), [anon_sym_Example] = ACTIONS(672), [anon_sym_Specify] = ACTIONS(672), @@ -46166,6 +46412,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -46302,6 +46550,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -46438,6 +46688,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -46574,6 +46826,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -46710,6 +46964,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -46846,6 +47102,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -46982,6 +47240,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -47118,6 +47378,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -47255,6 +47517,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(670), [anon_sym_fContext] = ACTIONS(670), [anon_sym_xContext] = ACTIONS(670), + [anon_sym_fExampleGroup] = ACTIONS(670), + [anon_sym_xExampleGroup] = ACTIONS(670), [anon_sym_It] = ACTIONS(672), [anon_sym_Example] = ACTIONS(672), [anon_sym_Specify] = ACTIONS(672), @@ -47390,6 +47654,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(906), [anon_sym_fContext] = ACTIONS(906), [anon_sym_xContext] = ACTIONS(906), + [anon_sym_fExampleGroup] = ACTIONS(906), + [anon_sym_xExampleGroup] = ACTIONS(906), [anon_sym_It] = ACTIONS(908), [anon_sym_Example] = ACTIONS(908), [anon_sym_Specify] = ACTIONS(908), @@ -47525,6 +47791,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(906), [anon_sym_fContext] = ACTIONS(906), [anon_sym_xContext] = ACTIONS(906), + [anon_sym_fExampleGroup] = ACTIONS(906), + [anon_sym_xExampleGroup] = ACTIONS(906), [anon_sym_It] = ACTIONS(908), [anon_sym_Example] = ACTIONS(908), [anon_sym_Specify] = ACTIONS(908), @@ -47660,6 +47928,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(906), [anon_sym_fContext] = ACTIONS(906), [anon_sym_xContext] = ACTIONS(906), + [anon_sym_fExampleGroup] = ACTIONS(906), + [anon_sym_xExampleGroup] = ACTIONS(906), [anon_sym_It] = ACTIONS(908), [anon_sym_Example] = ACTIONS(908), [anon_sym_Specify] = ACTIONS(908), @@ -47794,6 +48064,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -47930,6 +48202,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(906), [anon_sym_fContext] = ACTIONS(906), [anon_sym_xContext] = ACTIONS(906), + [anon_sym_fExampleGroup] = ACTIONS(906), + [anon_sym_xExampleGroup] = ACTIONS(906), [anon_sym_It] = ACTIONS(908), [anon_sym_Example] = ACTIONS(908), [anon_sym_Specify] = ACTIONS(908), @@ -48065,6 +48339,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(906), [anon_sym_fContext] = ACTIONS(906), [anon_sym_xContext] = ACTIONS(906), + [anon_sym_fExampleGroup] = ACTIONS(906), + [anon_sym_xExampleGroup] = ACTIONS(906), [anon_sym_It] = ACTIONS(908), [anon_sym_Example] = ACTIONS(908), [anon_sym_Specify] = ACTIONS(908), @@ -48199,6 +48475,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -48334,6 +48612,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -48470,6 +48750,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(906), [anon_sym_fContext] = ACTIONS(906), [anon_sym_xContext] = ACTIONS(906), + [anon_sym_fExampleGroup] = ACTIONS(906), + [anon_sym_xExampleGroup] = ACTIONS(906), [anon_sym_It] = ACTIONS(908), [anon_sym_Example] = ACTIONS(908), [anon_sym_Specify] = ACTIONS(908), @@ -48605,6 +48887,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(906), [anon_sym_fContext] = ACTIONS(906), [anon_sym_xContext] = ACTIONS(906), + [anon_sym_fExampleGroup] = ACTIONS(906), + [anon_sym_xExampleGroup] = ACTIONS(906), [anon_sym_It] = ACTIONS(908), [anon_sym_Example] = ACTIONS(908), [anon_sym_Specify] = ACTIONS(908), @@ -48739,6 +49023,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -48875,6 +49161,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(906), [anon_sym_fContext] = ACTIONS(906), [anon_sym_xContext] = ACTIONS(906), + [anon_sym_fExampleGroup] = ACTIONS(906), + [anon_sym_xExampleGroup] = ACTIONS(906), [anon_sym_It] = ACTIONS(908), [anon_sym_Example] = ACTIONS(908), [anon_sym_Specify] = ACTIONS(908), @@ -49009,6 +49297,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -49144,6 +49434,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -49280,6 +49572,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(906), [anon_sym_fContext] = ACTIONS(906), [anon_sym_xContext] = ACTIONS(906), + [anon_sym_fExampleGroup] = ACTIONS(906), + [anon_sym_xExampleGroup] = ACTIONS(906), [anon_sym_It] = ACTIONS(908), [anon_sym_Example] = ACTIONS(908), [anon_sym_Specify] = ACTIONS(908), @@ -49415,6 +49709,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(906), [anon_sym_fContext] = ACTIONS(906), [anon_sym_xContext] = ACTIONS(906), + [anon_sym_fExampleGroup] = ACTIONS(906), + [anon_sym_xExampleGroup] = ACTIONS(906), [anon_sym_It] = ACTIONS(908), [anon_sym_Example] = ACTIONS(908), [anon_sym_Specify] = ACTIONS(908), @@ -49549,6 +49845,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -49684,6 +49982,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -49819,6 +50119,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -49954,6 +50256,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -50089,6 +50393,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -50225,6 +50531,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(906), [anon_sym_fContext] = ACTIONS(906), [anon_sym_xContext] = ACTIONS(906), + [anon_sym_fExampleGroup] = ACTIONS(906), + [anon_sym_xExampleGroup] = ACTIONS(906), [anon_sym_It] = ACTIONS(908), [anon_sym_Example] = ACTIONS(908), [anon_sym_Specify] = ACTIONS(908), @@ -50359,6 +50667,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -50495,6 +50805,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(906), [anon_sym_fContext] = ACTIONS(906), [anon_sym_xContext] = ACTIONS(906), + [anon_sym_fExampleGroup] = ACTIONS(906), + [anon_sym_xExampleGroup] = ACTIONS(906), [anon_sym_It] = ACTIONS(908), [anon_sym_Example] = ACTIONS(908), [anon_sym_Specify] = ACTIONS(908), @@ -50629,6 +50941,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -50763,6 +51077,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -50896,6 +51212,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -51029,6 +51347,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -51162,6 +51482,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -51295,6 +51617,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -51428,6 +51752,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -51561,6 +51887,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -51694,6 +52022,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -51827,6 +52157,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -51960,6 +52292,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -52093,6 +52427,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -52226,6 +52562,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -52359,6 +52697,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -52492,6 +52832,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -52625,6 +52967,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -52758,6 +53102,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -52891,6 +53237,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -53024,6 +53372,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -53157,6 +53507,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -53290,6 +53642,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -53423,6 +53777,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -53556,6 +53912,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -53689,6 +54047,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -53822,6 +54182,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -53955,6 +54317,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -54088,6 +54452,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -54221,6 +54587,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -54354,6 +54722,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -54487,6 +54857,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -54620,6 +54992,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -54753,6 +55127,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -54886,6 +55262,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -55019,6 +55397,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -55152,6 +55532,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -55285,6 +55667,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -55418,6 +55802,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -55551,6 +55937,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -55684,6 +56072,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -55817,6 +56207,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -55950,6 +56342,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -56083,6 +56477,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -56216,6 +56612,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -56349,6 +56747,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -56482,6 +56882,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -56615,6 +57017,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -56748,6 +57152,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -56881,6 +57287,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -57014,6 +57422,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -57147,6 +57557,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -57280,6 +57692,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -57413,6 +57827,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -57546,6 +57962,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -57679,6 +58097,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -57812,6 +58232,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -57945,6 +58367,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -58078,6 +58502,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -58211,6 +58637,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -58344,6 +58772,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -58477,6 +58907,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -58610,6 +59042,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -58743,6 +59177,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -58876,6 +59312,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(1277), [anon_sym_fContext] = ACTIONS(1277), [anon_sym_xContext] = ACTIONS(1277), + [anon_sym_fExampleGroup] = ACTIONS(1277), + [anon_sym_xExampleGroup] = ACTIONS(1277), [anon_sym_It] = ACTIONS(1280), [anon_sym_Example] = ACTIONS(1280), [anon_sym_Specify] = ACTIONS(1280), @@ -59009,6 +59447,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -59142,6 +59582,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -59275,6 +59717,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -59408,6 +59852,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -59541,6 +59987,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -59674,6 +60122,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -59807,6 +60257,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -59940,6 +60392,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -60073,6 +60527,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -60206,6 +60662,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -60339,6 +60797,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -60472,6 +60932,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -60605,6 +61067,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -60738,6 +61202,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -60871,6 +61337,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -61004,6 +61472,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -61137,6 +61607,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -61270,6 +61742,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -61403,6 +61877,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -61536,6 +62012,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -61669,6 +62147,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -61802,6 +62282,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -61934,6 +62416,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -62066,6 +62550,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -62198,6 +62684,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -62330,6 +62818,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -62462,6 +62952,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -62594,6 +63086,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -62726,6 +63220,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -62858,6 +63354,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -62990,6 +63488,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -63122,6 +63622,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -63254,6 +63756,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -63386,6 +63890,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -63518,6 +64024,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(1476), [anon_sym_fContext] = ACTIONS(1476), [anon_sym_xContext] = ACTIONS(1476), + [anon_sym_fExampleGroup] = ACTIONS(1476), + [anon_sym_xExampleGroup] = ACTIONS(1476), [anon_sym_It] = ACTIONS(1479), [anon_sym_Example] = ACTIONS(1479), [anon_sym_Specify] = ACTIONS(1479), @@ -63650,6 +64158,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -63782,6 +64292,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -63914,6 +64426,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -64046,6 +64560,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -64178,6 +64694,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -64310,6 +64828,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -64442,6 +64962,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -64574,6 +65096,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -64706,6 +65230,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -64838,6 +65364,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(534), [anon_sym_fContext] = ACTIONS(534), [anon_sym_xContext] = ACTIONS(534), + [anon_sym_fExampleGroup] = ACTIONS(534), + [anon_sym_xExampleGroup] = ACTIONS(534), [anon_sym_It] = ACTIONS(537), [anon_sym_Example] = ACTIONS(537), [anon_sym_Specify] = ACTIONS(537), @@ -64970,6 +65498,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -65102,6 +65632,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -65234,6 +65766,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -65366,6 +65900,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(534), [anon_sym_fContext] = ACTIONS(534), [anon_sym_xContext] = ACTIONS(534), + [anon_sym_fExampleGroup] = ACTIONS(534), + [anon_sym_xExampleGroup] = ACTIONS(534), [anon_sym_It] = ACTIONS(537), [anon_sym_Example] = ACTIONS(537), [anon_sym_Specify] = ACTIONS(537), @@ -65498,6 +66034,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -65630,6 +66168,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -65762,6 +66302,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -65894,6 +66436,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -66026,6 +66570,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -66158,6 +66704,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -66290,6 +66838,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -66422,6 +66972,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -66554,6 +67106,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -66686,6 +67240,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -66818,6 +67374,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -66950,6 +67508,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -67082,6 +67642,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -67214,6 +67776,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -67346,6 +67910,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -67478,6 +68044,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -67610,6 +68178,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -67742,6 +68312,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -67874,6 +68446,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -68006,6 +68580,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -68138,6 +68714,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -68270,6 +68848,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -68402,6 +68982,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -68534,6 +69116,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -68666,6 +69250,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -68798,6 +69384,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -68930,6 +69518,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -69062,6 +69652,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -69194,6 +69786,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -69326,6 +69920,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -69458,6 +70054,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -69590,6 +70188,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -69722,6 +70322,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -69854,6 +70456,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -69986,6 +70590,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -70118,6 +70724,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -70250,6 +70858,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -70382,6 +70992,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -70514,6 +71126,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -70646,6 +71260,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -70778,6 +71394,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -70910,6 +71528,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -71042,6 +71662,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -71174,6 +71796,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -71306,6 +71930,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -71438,6 +72064,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -71570,6 +72198,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -71702,6 +72332,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -71834,6 +72466,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -71966,6 +72600,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -72098,6 +72734,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -72230,6 +72868,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -72362,6 +73002,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -72494,6 +73136,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -72626,6 +73270,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -72758,6 +73404,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -72890,6 +73538,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -73022,6 +73672,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -73154,6 +73806,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -73286,6 +73940,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -73418,6 +74074,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -73550,6 +74208,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -73682,6 +74342,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -73814,6 +74476,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -73946,6 +74610,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -74078,6 +74744,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -74210,6 +74878,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -74342,6 +75012,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -74474,6 +75146,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -74606,6 +75280,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -74738,6 +75414,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -74870,6 +75548,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -75002,6 +75682,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -75134,6 +75816,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -75266,6 +75950,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -75398,6 +76084,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -75530,6 +76218,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -75662,6 +76352,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -75794,6 +76486,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -75926,6 +76620,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -76058,6 +76754,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -76190,6 +76888,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -76322,6 +77022,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -76454,6 +77156,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -76586,6 +77290,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -76718,6 +77424,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -76850,6 +77558,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -76982,6 +77692,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -77114,6 +77826,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -77246,6 +77960,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -77378,6 +78094,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -77510,6 +78228,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -77642,6 +78362,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -77774,6 +78496,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -77906,6 +78630,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -78038,6 +78764,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -78170,6 +78898,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -78302,6 +79032,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -78434,6 +79166,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -78566,6 +79300,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -78698,6 +79434,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -78830,6 +79568,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -78962,6 +79702,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -79094,6 +79836,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -79226,6 +79970,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -79358,6 +80104,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -79490,6 +80238,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -79622,6 +80372,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -79754,6 +80506,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -79886,6 +80640,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -80018,6 +80774,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -80150,6 +80908,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -80282,6 +81042,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -80414,6 +81176,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -80546,6 +81310,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -80678,6 +81444,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -80810,6 +81578,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -80942,6 +81712,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -81074,6 +81846,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -81206,6 +81980,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -81338,6 +82114,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -81470,6 +82248,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -81602,6 +82382,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -81734,6 +82516,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -81866,6 +82650,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -81998,6 +82784,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -82130,6 +82918,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -82262,6 +83052,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -82394,6 +83186,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -82526,6 +83320,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -82658,6 +83454,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -82790,6 +83588,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -82922,6 +83722,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -83054,6 +83856,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -83186,6 +83990,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -83318,6 +84124,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -83450,6 +84258,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -83582,6 +84392,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -83714,6 +84526,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -83846,6 +84660,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -83978,6 +84794,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -84110,6 +84928,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -84242,6 +85062,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -84374,6 +85196,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -84506,6 +85330,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -84638,6 +85464,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -84770,6 +85598,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -84902,6 +85732,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -85034,6 +85866,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -85166,6 +86000,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -85298,6 +86134,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -85430,6 +86268,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -85562,6 +86402,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -85694,6 +86536,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -85826,6 +86670,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -85958,6 +86804,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -86090,6 +86938,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -86222,6 +87072,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -86354,6 +87206,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -86486,6 +87340,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -86618,6 +87474,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -86750,6 +87608,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -86882,6 +87742,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -87014,6 +87876,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -87146,6 +88010,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -87278,6 +88144,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -87410,6 +88278,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -87542,6 +88412,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -87674,6 +88546,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -87806,6 +88680,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -87938,6 +88814,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -88070,6 +88948,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -88202,6 +89082,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -88334,6 +89216,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -88466,6 +89350,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -88598,6 +89484,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -88730,6 +89618,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -88862,6 +89752,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -88994,6 +89886,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -89126,6 +90020,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -89258,6 +90154,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -89390,6 +90288,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -89522,6 +90422,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -89654,6 +90556,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -89786,6 +90690,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -89918,6 +90824,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -90050,6 +90958,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -90182,6 +91092,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -90314,6 +91226,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -90446,6 +91360,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -90578,6 +91494,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -90710,6 +91628,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -90842,6 +91762,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -90974,6 +91896,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -91106,6 +92030,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -91238,6 +92164,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -91370,6 +92298,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -91502,6 +92432,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -91634,6 +92566,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -91766,6 +92700,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -91898,6 +92834,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -92030,6 +92968,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -92162,6 +93102,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -92294,6 +93236,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -92426,6 +93370,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -92558,6 +93504,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -92690,6 +93638,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -92822,6 +93772,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -92954,6 +93906,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -93086,6 +94040,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -93218,6 +94174,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -93350,6 +94308,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -93482,6 +94442,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -93614,6 +94576,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -93746,6 +94710,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -93878,6 +94844,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -94010,6 +94978,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -94142,6 +95112,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -94274,6 +95246,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -94406,6 +95380,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -94538,6 +95514,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -94670,6 +95648,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -94802,6 +95782,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -94934,6 +95916,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -95066,6 +96050,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -95198,6 +96184,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -95330,6 +96318,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -95462,6 +96452,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -95594,6 +96586,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -95726,6 +96720,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -95858,6 +96854,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -95990,6 +96988,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -96122,6 +97122,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -96254,6 +97256,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -96386,6 +97390,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -96518,6 +97524,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -96650,6 +97658,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -96782,6 +97792,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -96914,6 +97926,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -97046,6 +98060,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -97178,6 +98194,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -97310,6 +98328,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -97442,6 +98462,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -97574,6 +98596,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -97706,6 +98730,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -97838,6 +98864,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -97970,6 +98998,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -98102,6 +99132,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -98234,6 +99266,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -98366,6 +99400,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -98498,6 +99534,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -98630,6 +99668,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -98762,6 +99802,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -98894,6 +99936,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -99026,6 +100070,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -99158,6 +100204,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -99290,6 +100338,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -99422,6 +100472,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -99554,6 +100606,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -99686,6 +100740,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -99818,6 +100874,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -99950,6 +101008,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -100082,6 +101142,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -100214,6 +101276,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -100346,6 +101410,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -100478,6 +101544,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -100610,6 +101678,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -100742,6 +101812,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -100874,6 +101946,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -101006,6 +102080,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -101138,6 +102214,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -101270,6 +102348,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -101402,6 +102482,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -101534,6 +102616,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -101666,6 +102750,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -101798,6 +102884,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -101930,6 +103018,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -102062,6 +103152,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -102194,6 +103286,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -102326,6 +103420,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -102458,6 +103554,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -102590,6 +103688,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -102722,6 +103822,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -102854,6 +103956,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -102986,6 +104090,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -103118,6 +104224,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -103250,6 +104358,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -103382,6 +104492,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -103514,6 +104626,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -103646,6 +104760,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -103778,6 +104894,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -103910,6 +105028,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -104042,6 +105162,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -104174,6 +105296,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -104306,6 +105430,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -104438,6 +105564,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -104570,6 +105698,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -104702,6 +105832,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -104834,6 +105966,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -104966,6 +106100,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -105098,6 +106234,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -105230,6 +106368,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -105362,6 +106502,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -105494,6 +106636,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -105626,6 +106770,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -105758,6 +106904,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -105890,6 +107038,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -106022,6 +107172,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -106154,6 +107306,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -106286,6 +107440,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -106418,6 +107574,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -106550,6 +107708,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -106682,6 +107842,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -106814,6 +107976,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -106946,6 +108110,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -107078,6 +108244,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -107210,6 +108378,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -107342,6 +108512,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -107474,6 +108646,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -107606,6 +108780,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -107738,6 +108914,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -107870,6 +109048,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -108002,6 +109182,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -108134,6 +109316,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -108266,6 +109450,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -108398,6 +109584,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -108530,6 +109718,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -108662,6 +109852,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -108794,6 +109986,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -108926,6 +110120,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -109058,6 +110254,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -109189,6 +110387,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(670), [anon_sym_fContext] = ACTIONS(670), [anon_sym_xContext] = ACTIONS(670), + [anon_sym_fExampleGroup] = ACTIONS(670), + [anon_sym_xExampleGroup] = ACTIONS(670), [anon_sym_It] = ACTIONS(672), [anon_sym_Example] = ACTIONS(672), [anon_sym_Specify] = ACTIONS(672), @@ -109320,6 +110520,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -109451,6 +110653,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -109582,6 +110786,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -109713,6 +110919,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -109844,6 +111052,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -109975,6 +111185,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -110106,6 +111318,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -110237,6 +111451,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -110368,6 +111584,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -110499,6 +111717,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -110630,6 +111850,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -110761,6 +111983,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(1701), [anon_sym_fContext] = ACTIONS(1701), [anon_sym_xContext] = ACTIONS(1701), + [anon_sym_fExampleGroup] = ACTIONS(1701), + [anon_sym_xExampleGroup] = ACTIONS(1701), [anon_sym_It] = ACTIONS(1704), [anon_sym_Example] = ACTIONS(1704), [anon_sym_Specify] = ACTIONS(1704), @@ -110892,6 +112116,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(906), [anon_sym_fContext] = ACTIONS(906), [anon_sym_xContext] = ACTIONS(906), + [anon_sym_fExampleGroup] = ACTIONS(906), + [anon_sym_xExampleGroup] = ACTIONS(906), [anon_sym_It] = ACTIONS(908), [anon_sym_Example] = ACTIONS(908), [anon_sym_Specify] = ACTIONS(908), @@ -111023,6 +112249,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -111154,6 +112382,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -111285,6 +112515,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -111416,6 +112648,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -111547,6 +112781,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -111678,6 +112914,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -111808,6 +113046,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(359), [anon_sym_fContext] = ACTIONS(359), [anon_sym_xContext] = ACTIONS(359), + [anon_sym_fExampleGroup] = ACTIONS(359), + [anon_sym_xExampleGroup] = ACTIONS(359), [anon_sym_It] = ACTIONS(361), [anon_sym_Example] = ACTIONS(361), [anon_sym_Specify] = ACTIONS(361), @@ -111938,6 +113178,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(359), [anon_sym_fContext] = ACTIONS(359), [anon_sym_xContext] = ACTIONS(359), + [anon_sym_fExampleGroup] = ACTIONS(359), + [anon_sym_xExampleGroup] = ACTIONS(359), [anon_sym_It] = ACTIONS(361), [anon_sym_Example] = ACTIONS(361), [anon_sym_Specify] = ACTIONS(361), @@ -112068,6 +113310,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -112198,6 +113442,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -112328,6 +113574,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(359), [anon_sym_fContext] = ACTIONS(359), [anon_sym_xContext] = ACTIONS(359), + [anon_sym_fExampleGroup] = ACTIONS(359), + [anon_sym_xExampleGroup] = ACTIONS(359), [anon_sym_It] = ACTIONS(361), [anon_sym_Example] = ACTIONS(361), [anon_sym_Specify] = ACTIONS(361), @@ -112458,6 +113706,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -112588,6 +113838,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(359), [anon_sym_fContext] = ACTIONS(359), [anon_sym_xContext] = ACTIONS(359), + [anon_sym_fExampleGroup] = ACTIONS(359), + [anon_sym_xExampleGroup] = ACTIONS(359), [anon_sym_It] = ACTIONS(361), [anon_sym_Example] = ACTIONS(361), [anon_sym_Specify] = ACTIONS(361), @@ -112718,6 +113970,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(359), [anon_sym_fContext] = ACTIONS(359), [anon_sym_xContext] = ACTIONS(359), + [anon_sym_fExampleGroup] = ACTIONS(359), + [anon_sym_xExampleGroup] = ACTIONS(359), [anon_sym_It] = ACTIONS(361), [anon_sym_Example] = ACTIONS(361), [anon_sym_Specify] = ACTIONS(361), @@ -112848,6 +114102,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -112978,6 +114234,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -113108,6 +114366,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(359), [anon_sym_fContext] = ACTIONS(359), [anon_sym_xContext] = ACTIONS(359), + [anon_sym_fExampleGroup] = ACTIONS(359), + [anon_sym_xExampleGroup] = ACTIONS(359), [anon_sym_It] = ACTIONS(361), [anon_sym_Example] = ACTIONS(361), [anon_sym_Specify] = ACTIONS(361), @@ -113238,6 +114498,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -113368,6 +114630,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(670), [anon_sym_fContext] = ACTIONS(670), [anon_sym_xContext] = ACTIONS(670), + [anon_sym_fExampleGroup] = ACTIONS(670), + [anon_sym_xExampleGroup] = ACTIONS(670), [anon_sym_It] = ACTIONS(672), [anon_sym_Example] = ACTIONS(672), [anon_sym_Specify] = ACTIONS(672), @@ -113498,6 +114762,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(359), [anon_sym_fContext] = ACTIONS(359), [anon_sym_xContext] = ACTIONS(359), + [anon_sym_fExampleGroup] = ACTIONS(359), + [anon_sym_xExampleGroup] = ACTIONS(359), [anon_sym_It] = ACTIONS(361), [anon_sym_Example] = ACTIONS(361), [anon_sym_Specify] = ACTIONS(361), @@ -113628,6 +114894,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(359), [anon_sym_fContext] = ACTIONS(359), [anon_sym_xContext] = ACTIONS(359), + [anon_sym_fExampleGroup] = ACTIONS(359), + [anon_sym_xExampleGroup] = ACTIONS(359), [anon_sym_It] = ACTIONS(361), [anon_sym_Example] = ACTIONS(361), [anon_sym_Specify] = ACTIONS(361), @@ -113758,6 +115026,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(75), [anon_sym_fContext] = ACTIONS(75), [anon_sym_xContext] = ACTIONS(75), + [anon_sym_fExampleGroup] = ACTIONS(75), + [anon_sym_xExampleGroup] = ACTIONS(75), [anon_sym_It] = ACTIONS(77), [anon_sym_Example] = ACTIONS(77), [anon_sym_Specify] = ACTIONS(77), @@ -113888,6 +115158,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(906), [anon_sym_fContext] = ACTIONS(906), [anon_sym_xContext] = ACTIONS(906), + [anon_sym_fExampleGroup] = ACTIONS(906), + [anon_sym_xExampleGroup] = ACTIONS(906), [anon_sym_It] = ACTIONS(908), [anon_sym_Example] = ACTIONS(908), [anon_sym_Specify] = ACTIONS(908), @@ -114018,6 +115290,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(359), [anon_sym_fContext] = ACTIONS(359), [anon_sym_xContext] = ACTIONS(359), + [anon_sym_fExampleGroup] = ACTIONS(359), + [anon_sym_xExampleGroup] = ACTIONS(359), [anon_sym_It] = ACTIONS(361), [anon_sym_Example] = ACTIONS(361), [anon_sym_Specify] = ACTIONS(361), @@ -114121,6 +115395,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(1827), [anon_sym_fContext] = ACTIONS(1827), [anon_sym_xContext] = ACTIONS(1827), + [anon_sym_fExampleGroup] = ACTIONS(1827), + [anon_sym_xExampleGroup] = ACTIONS(1827), [anon_sym_It] = ACTIONS(1827), [anon_sym_Example] = ACTIONS(1827), [anon_sym_Specify] = ACTIONS(1827), @@ -114226,6 +115502,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(1831), [anon_sym_fContext] = ACTIONS(1831), [anon_sym_xContext] = ACTIONS(1831), + [anon_sym_fExampleGroup] = ACTIONS(1831), + [anon_sym_xExampleGroup] = ACTIONS(1831), [anon_sym_It] = ACTIONS(1831), [anon_sym_Example] = ACTIONS(1831), [anon_sym_Specify] = ACTIONS(1831), @@ -114331,6 +115609,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(1835), [anon_sym_fContext] = ACTIONS(1835), [anon_sym_xContext] = ACTIONS(1835), + [anon_sym_fExampleGroup] = ACTIONS(1835), + [anon_sym_xExampleGroup] = ACTIONS(1835), [anon_sym_It] = ACTIONS(1835), [anon_sym_Example] = ACTIONS(1835), [anon_sym_Specify] = ACTIONS(1835), @@ -114435,6 +115715,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(1827), [anon_sym_fContext] = ACTIONS(1827), [anon_sym_xContext] = ACTIONS(1827), + [anon_sym_fExampleGroup] = ACTIONS(1827), + [anon_sym_xExampleGroup] = ACTIONS(1827), [anon_sym_It] = ACTIONS(1827), [anon_sym_Example] = ACTIONS(1827), [anon_sym_Specify] = ACTIONS(1827), @@ -114539,6 +115821,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(1835), [anon_sym_fContext] = ACTIONS(1835), [anon_sym_xContext] = ACTIONS(1835), + [anon_sym_fExampleGroup] = ACTIONS(1835), + [anon_sym_xExampleGroup] = ACTIONS(1835), [anon_sym_It] = ACTIONS(1835), [anon_sym_Example] = ACTIONS(1835), [anon_sym_Specify] = ACTIONS(1835), @@ -114643,6 +115927,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(1831), [anon_sym_fContext] = ACTIONS(1831), [anon_sym_xContext] = ACTIONS(1831), + [anon_sym_fExampleGroup] = ACTIONS(1831), + [anon_sym_xExampleGroup] = ACTIONS(1831), [anon_sym_It] = ACTIONS(1831), [anon_sym_Example] = ACTIONS(1831), [anon_sym_Specify] = ACTIONS(1831), @@ -114746,6 +116032,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(1835), [anon_sym_fContext] = ACTIONS(1835), [anon_sym_xContext] = ACTIONS(1835), + [anon_sym_fExampleGroup] = ACTIONS(1835), + [anon_sym_xExampleGroup] = ACTIONS(1835), [anon_sym_It] = ACTIONS(1835), [anon_sym_Example] = ACTIONS(1835), [anon_sym_Specify] = ACTIONS(1835), @@ -114849,6 +116137,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(1831), [anon_sym_fContext] = ACTIONS(1831), [anon_sym_xContext] = ACTIONS(1831), + [anon_sym_fExampleGroup] = ACTIONS(1831), + [anon_sym_xExampleGroup] = ACTIONS(1831), [anon_sym_It] = ACTIONS(1831), [anon_sym_Example] = ACTIONS(1831), [anon_sym_Specify] = ACTIONS(1831), @@ -114952,6 +116242,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(1831), [anon_sym_fContext] = ACTIONS(1831), [anon_sym_xContext] = ACTIONS(1831), + [anon_sym_fExampleGroup] = ACTIONS(1831), + [anon_sym_xExampleGroup] = ACTIONS(1831), [anon_sym_It] = ACTIONS(1831), [anon_sym_Example] = ACTIONS(1831), [anon_sym_Specify] = ACTIONS(1831), @@ -115055,6 +116347,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(1827), [anon_sym_fContext] = ACTIONS(1827), [anon_sym_xContext] = ACTIONS(1827), + [anon_sym_fExampleGroup] = ACTIONS(1827), + [anon_sym_xExampleGroup] = ACTIONS(1827), [anon_sym_It] = ACTIONS(1827), [anon_sym_Example] = ACTIONS(1827), [anon_sym_Specify] = ACTIONS(1827), @@ -115158,6 +116452,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(1835), [anon_sym_fContext] = ACTIONS(1835), [anon_sym_xContext] = ACTIONS(1835), + [anon_sym_fExampleGroup] = ACTIONS(1835), + [anon_sym_xExampleGroup] = ACTIONS(1835), [anon_sym_It] = ACTIONS(1835), [anon_sym_Example] = ACTIONS(1835), [anon_sym_Specify] = ACTIONS(1835), @@ -115261,6 +116557,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(1827), [anon_sym_fContext] = ACTIONS(1827), [anon_sym_xContext] = ACTIONS(1827), + [anon_sym_fExampleGroup] = ACTIONS(1827), + [anon_sym_xExampleGroup] = ACTIONS(1827), [anon_sym_It] = ACTIONS(1827), [anon_sym_Example] = ACTIONS(1827), [anon_sym_Specify] = ACTIONS(1827), @@ -115552,6 +116850,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(457), [anon_sym_fContext] = ACTIONS(457), [anon_sym_xContext] = ACTIONS(457), + [anon_sym_fExampleGroup] = ACTIONS(457), + [anon_sym_xExampleGroup] = ACTIONS(457), [anon_sym_It] = ACTIONS(457), [anon_sym_Example] = ACTIONS(457), [anon_sym_Specify] = ACTIONS(457), @@ -115642,6 +116942,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(1931), [anon_sym_fContext] = ACTIONS(1931), [anon_sym_xContext] = ACTIONS(1931), + [anon_sym_fExampleGroup] = ACTIONS(1931), + [anon_sym_xExampleGroup] = ACTIONS(1931), [anon_sym_It] = ACTIONS(1931), [anon_sym_Example] = ACTIONS(1931), [anon_sym_Specify] = ACTIONS(1931), @@ -115732,6 +117034,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(1931), [anon_sym_fContext] = ACTIONS(1931), [anon_sym_xContext] = ACTIONS(1931), + [anon_sym_fExampleGroup] = ACTIONS(1931), + [anon_sym_xExampleGroup] = ACTIONS(1931), [anon_sym_It] = ACTIONS(1931), [anon_sym_Example] = ACTIONS(1931), [anon_sym_Specify] = ACTIONS(1931), @@ -115822,6 +117126,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(1931), [anon_sym_fContext] = ACTIONS(1931), [anon_sym_xContext] = ACTIONS(1931), + [anon_sym_fExampleGroup] = ACTIONS(1931), + [anon_sym_xExampleGroup] = ACTIONS(1931), [anon_sym_It] = ACTIONS(1931), [anon_sym_Example] = ACTIONS(1931), [anon_sym_Specify] = ACTIONS(1931), @@ -115912,6 +117218,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(1931), [anon_sym_fContext] = ACTIONS(1931), [anon_sym_xContext] = ACTIONS(1931), + [anon_sym_fExampleGroup] = ACTIONS(1931), + [anon_sym_xExampleGroup] = ACTIONS(1931), [anon_sym_It] = ACTIONS(1931), [anon_sym_Example] = ACTIONS(1931), [anon_sym_Specify] = ACTIONS(1931), @@ -115999,6 +117307,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(1831), [anon_sym_fContext] = ACTIONS(1831), [anon_sym_xContext] = ACTIONS(1831), + [anon_sym_fExampleGroup] = ACTIONS(1831), + [anon_sym_xExampleGroup] = ACTIONS(1831), [anon_sym_It] = ACTIONS(1831), [anon_sym_Example] = ACTIONS(1831), [anon_sym_Specify] = ACTIONS(1831), @@ -116086,6 +117396,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(1931), [anon_sym_fContext] = ACTIONS(1931), [anon_sym_xContext] = ACTIONS(1931), + [anon_sym_fExampleGroup] = ACTIONS(1931), + [anon_sym_xExampleGroup] = ACTIONS(1931), [anon_sym_It] = ACTIONS(1931), [anon_sym_Example] = ACTIONS(1931), [anon_sym_Specify] = ACTIONS(1931), @@ -116173,6 +117485,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(1931), [anon_sym_fContext] = ACTIONS(1931), [anon_sym_xContext] = ACTIONS(1931), + [anon_sym_fExampleGroup] = ACTIONS(1931), + [anon_sym_xExampleGroup] = ACTIONS(1931), [anon_sym_It] = ACTIONS(1931), [anon_sym_Example] = ACTIONS(1931), [anon_sym_Specify] = ACTIONS(1931), @@ -116260,6 +117574,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(457), [anon_sym_fContext] = ACTIONS(457), [anon_sym_xContext] = ACTIONS(457), + [anon_sym_fExampleGroup] = ACTIONS(457), + [anon_sym_xExampleGroup] = ACTIONS(457), [anon_sym_It] = ACTIONS(457), [anon_sym_Example] = ACTIONS(457), [anon_sym_Specify] = ACTIONS(457), @@ -116347,6 +117663,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(1827), [anon_sym_fContext] = ACTIONS(1827), [anon_sym_xContext] = ACTIONS(1827), + [anon_sym_fExampleGroup] = ACTIONS(1827), + [anon_sym_xExampleGroup] = ACTIONS(1827), [anon_sym_It] = ACTIONS(1827), [anon_sym_Example] = ACTIONS(1827), [anon_sym_Specify] = ACTIONS(1827), @@ -116434,6 +117752,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(457), [anon_sym_fContext] = ACTIONS(457), [anon_sym_xContext] = ACTIONS(457), + [anon_sym_fExampleGroup] = ACTIONS(457), + [anon_sym_xExampleGroup] = ACTIONS(457), [anon_sym_It] = ACTIONS(457), [anon_sym_Example] = ACTIONS(457), [anon_sym_Specify] = ACTIONS(457), @@ -116521,6 +117841,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(1835), [anon_sym_fContext] = ACTIONS(1835), [anon_sym_xContext] = ACTIONS(1835), + [anon_sym_fExampleGroup] = ACTIONS(1835), + [anon_sym_xExampleGroup] = ACTIONS(1835), [anon_sym_It] = ACTIONS(1835), [anon_sym_Example] = ACTIONS(1835), [anon_sym_Specify] = ACTIONS(1835), @@ -116607,6 +117929,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(1931), [anon_sym_fContext] = ACTIONS(1931), [anon_sym_xContext] = ACTIONS(1931), + [anon_sym_fExampleGroup] = ACTIONS(1931), + [anon_sym_xExampleGroup] = ACTIONS(1931), [anon_sym_It] = ACTIONS(1931), [anon_sym_Example] = ACTIONS(1931), [anon_sym_Specify] = ACTIONS(1931), @@ -116693,6 +118017,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(1931), [anon_sym_fContext] = ACTIONS(1931), [anon_sym_xContext] = ACTIONS(1931), + [anon_sym_fExampleGroup] = ACTIONS(1931), + [anon_sym_xExampleGroup] = ACTIONS(1931), [anon_sym_It] = ACTIONS(1931), [anon_sym_Example] = ACTIONS(1931), [anon_sym_Specify] = ACTIONS(1931), @@ -116779,6 +118105,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ExampleGroup] = ACTIONS(1931), [anon_sym_fContext] = ACTIONS(1931), [anon_sym_xContext] = ACTIONS(1931), + [anon_sym_fExampleGroup] = ACTIONS(1931), + [anon_sym_xExampleGroup] = ACTIONS(1931), [anon_sym_It] = ACTIONS(1931), [anon_sym_Example] = ACTIONS(1931), [anon_sym_Specify] = ACTIONS(1931), diff --git a/src/tree_sitter/parser.h b/src/tree_sitter/parser.h index 858107d..bd98686 100644 --- a/src/tree_sitter/parser.h +++ b/src/tree_sitter/parser.h @@ -152,6 +152,7 @@ struct TSLanguage { }; static inline bool set_contains(const TSCharacterRange *ranges, uint32_t len, int32_t lookahead) { + if (len == 0) return false; uint32_t index = 0; uint32_t size = len - index; while (size > 1) { diff --git a/tree-sitter.json b/tree-sitter.json index c0956b3..7b55153 100644 --- a/tree-sitter.json +++ b/tree-sitter.json @@ -5,9 +5,15 @@ "camelcase": "Shellspec", "scope": "source.shellspec", "path": ".", - "file-types": ["shellspec"], - "highlights": ["queries/highlights.scm"], - "locals": ["queries/locals.scm"], + "file-types": [ + "shellspec" + ], + "highlights": [ + "queries/highlights.scm" + ], + "locals": [ + "queries/locals.scm" + ], "injection-regex": "shellspec" } ],